/ Assembly List / LJCNetCommon / HTMLBuilder / GetHTMLEnd

Namespace - LJCNetCommon


Parameters
textState - The current text state values.

Returns

The HTML end tags.

Syntax

C#
public String GetHTMLEnd(TextState textState)

Gets the HTML end <body> and <html>.

Example

C#
// Root Method Begin
var textState = new TextState();

// Defaults: IndentCharCount = 2, LineLimit = 80, WrapEnabled = false.
var hb = new HTMLBuilder(textState);

// Example Method:
var result = hb.GetHTMLEnd(textState);
        
// result:
// </body>
// </html>

Copyright © Lester J. Clark and Contributors.
Licensed under the MIT License.